home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / comm / ntmler8b.zip / CGIMAIL.CPP < prev    next >
C/C++ Source or Header  |  1996-09-19  |  330b  |  17 lines

  1. #include <stdio.h>
  2. #include "cgi.h"
  3. #include "gMail.h"
  4.  
  5. void main()
  6. {
  7.     CTemplateInfo t1;
  8.  
  9.     //argv[1] is the command line parameter that specifies which template file to use
  10.         
  11.     t1.SetTemplateFile(getenv("QUERY_STRING"));
  12.     t1.ParseTags();
  13.     //t1.ProcessFormInformation();
  14.     t1.MailInformation();
  15. }
  16.  
  17.